Source file fpath.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
let is_root t = Filename.dirname t = t
let initial_cwd = Stdlib.Sys.getcwd ()
type mkdir_result =
| Already_exists
| Created
| Missing_parent_directory
let mkdir ?(perms = 0o777) t_s =
try
Unix.mkdir t_s perms;
Created
with
| Unix.Unix_error (EEXIST, _, _) -> Already_exists
| Unix.Unix_error (ENOENT, _, _) -> Missing_parent_directory
;;
type mkdir_p_result =
| Already_exists
| Created
let rec mkdir_p ?perms t_s =
match mkdir ?perms t_s with
| Created -> Created
| Already_exists -> Already_exists
| Missing_parent_directory ->
if is_root t_s
then
Code_error.raise
"Impossible happened: [Fpath.mkdir] refused to create a directory at the root, \
allegedly because its parent was missing"
[]
else (
let parent = Filename.dirname t_s in
match mkdir_p ?perms parent with
| Created | Already_exists ->
(match mkdir t_s ?perms with
| Created -> Created
| Already_exists -> Already_exists
| Missing_parent_directory ->
Code_error.raise "failed to create parent directory" [ "t_s", Dyn.string t_s ]))
;;
let resolve_link path =
match Unix.readlink path with
| exception Unix.Unix_error (EINVAL, _, _) -> Ok None
| exception Unix.Unix_error (error, syscall, arg) ->
Error (Dune_filesystem_stubs.Unix_error.Detailed.create ~syscall ~arg error)
| link ->
Ok
(Some
(if Filename.is_relative link
then Filename.concat (Filename.dirname path) link
else link))
;;
type follow_symlink_error =
| Not_a_symlink
| Max_depth_exceeded
| Unix_error of Dune_filesystem_stubs.Unix_error.Detailed.t
let follow_symlink path =
let rec loop n path =
if n = 0
then Error Max_depth_exceeded
else (
match resolve_link path with
| Error e -> Error (Unix_error e)
| Ok None -> Ok path
| Ok (Some path) -> loop (n - 1) path)
in
match resolve_link path with
| Ok None -> Error Not_a_symlink
| Ok (Some p) -> loop 20 p
| Error e -> Error (Unix_error e)
;;
let rec follow_symlinks path =
let parent = Filename.dirname path in
let file = Filename.basename path in
if parent = path
then Some path
else if parent = Filename.current_dir_name
then
if path = Filename.concat Filename.current_dir_name file then Some path else Some file
else (
match follow_symlinks parent with
| None -> None
| Some parent ->
let path = Filename.concat parent file in
(match follow_symlink path with
| Ok p -> Some p
| Error Max_depth_exceeded -> None
| Error _ -> Some path))
;;
let win32_unlink fn =
try Unix.unlink fn with
| Unix.Unix_error (Unix.EACCES, _, _) as e ->
(try
Unix.chmod fn 0o666;
Unix.unlink fn
with
| _ -> raise e)
;;
let unlink = if Stdlib.Sys.win32 then win32_unlink else Unix.unlink
let unlink_no_err t =
try unlink t with
| _ -> ()
;;
type clear_dir_result =
| Cleared
| Directory_does_not_exist
let rec clear_dir dir =
match Dune_filesystem_stubs.read_directory_with_kinds dir with
| Error (ENOENT, _, _) -> Directory_does_not_exist
| Error (error, _, _) ->
raise (Unix.Unix_error (error, dir, "Stdune.Path.rm_rf: read_directory_with_kinds"))
| Ok listing ->
List.iter listing ~f:(fun (fn, kind) ->
let fn = Filename.concat dir fn in
match kind with
| Unix.S_DIR -> rm_rf_dir fn
| _ -> unlink_no_err fn);
Cleared
and rm_rf_dir path =
match clear_dir path with
| Directory_does_not_exist -> ()
| Cleared ->
(match Unix.rmdir path with
| () -> ()
| exception Unix.Unix_error (ENOENT, _, _) ->
())
;;
let rm_rf fn =
match Unix.lstat fn with
| exception Unix.Unix_error (ENOENT, _, _) -> ()
| { Unix.st_kind = S_DIR; _ } -> rm_rf_dir fn
| _ -> unlink fn
;;
let traverse_files =
let rec loop root stack acc f =
match stack with
| [] -> acc
| dir :: dirs ->
let dir_path = Filename.concat root dir in
(match Dune_filesystem_stubs.read_directory_with_kinds dir_path with
| Error e -> Dune_filesystem_stubs.Unix_error.Detailed.raise e
| Ok entries ->
let stack, acc =
List.fold_left entries ~init:(dirs, acc) ~f:(fun (stack, acc) (fname, kind) ->
match (kind : Unix.file_kind) with
| S_DIR -> Filename.concat dir fname :: stack, acc
| S_REG -> stack, f ~dir fname acc
| S_LNK ->
let path = Filename.concat dir_path fname in
(match (Unix.stat path).st_kind with
| exception Unix.Unix_error (Unix.ENOENT, _, _) -> stack, acc
| S_DIR -> Filename.concat dir fname :: stack, acc
| S_REG -> stack, f ~dir fname acc
| _ -> stack, acc)
| _ -> stack, acc)
in
loop root stack acc f)
in
fun ~dir ~init ~f -> loop dir [ "" ] init f
;;