Source file FileUtilCP.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
open FileUtilTypes
open FilePath
open FileUtilMisc
open FileUtilPermission
open FileUtilTOUCH
open FileUtilRM
open FileUtilSTAT
open FileUtilUMASK
open FileUtilMKDIR
open FileUtilCHMOD
open FileUtilTEST
exception CpError of string
exception CpSkip
type cp_error =
[ `CannotChmodDstDir of filename * exn
| `CannotCopyDir of filename
| `CannotCopyFilesToFile of filename list * filename
| `CannotCreateDir of filename * exn
| `CannotListSrcDir of filename * exn
| `CannotOpenDstFile of filename * exn
| `CannotOpenSrcFile of filename * exn
| `CannotRemoveDstFile of filename * exn
| `DstDirNotDir of filename
| `ErrorRead of filename * exn
| `ErrorWrite of filename * exn
| `Exc of exn
| `NoSourceFile of filename
| `PartialWrite of filename * int * int
| `SameFile of filename * filename
| `UnhandledType of filename * kind ]
let same_file st1 st2 =
st1.device = st2.device && st1.inode = st2.inode
let[@ warning "-27"] cp
?(follow=Skip)
?(force=Force)
?(recurse=false)
?(preserve=false)
?(error=(fun str _ -> raise (CpError str)))
fln_src_lst
fln_dst =
let herror, _ =
let spf fmt = Printf.sprintf fmt in
let exs () e =
match e with
| Unix.Unix_error(err, _, _) -> Unix.error_message err
| e -> Printexc.to_string e
in
handle_error_gen "cp" error
(function
| `CannotRemoveDstFile(fn_dst, e) ->
spf "Cannot remove destination file '%s': %a." fn_dst exs e
| `CannotOpenDstFile(fn_dst, e) ->
spf "Cannot open destination file '%s': %a." fn_dst exs e
| `CannotOpenSrcFile(fn_src, e) ->
spf "Cannot open source file '%s': %a." fn_src exs e
| `ErrorRead(fn_src, e) ->
spf "Error reading file '%s': %a." fn_src exs e
| `ErrorWrite(fn_dst, e) ->
spf "Error writing file '%s': %a." fn_dst exs e
| `PartialWrite(fn_dst, read, written) ->
spf
"Partial write to file '%s': %d read, %d written."
fn_dst
read
written
| `CannotCopyDir fn_src ->
spf "Cannot copy directory '%s' recursively." fn_src
| `DstDirNotDir fn_dst ->
spf "Destination '%s' is not a directory." fn_dst
| `CannotCreateDir(fn_dst, e) ->
spf "Cannot create directory '%s': %a." fn_dst exs e
| `CannotListSrcDir(fn_src, e) ->
spf "Cannot list directory '%s': %a." fn_src exs e
| `CannotChmodDstDir(fn_dst, e) ->
spf "'Cannot chmod directory %s': %a." fn_dst exs e
| `NoSourceFile fn_src ->
spf "Source file '%s' doesn't exist." fn_src
| `SameFile(fn_src, fn_dst) ->
spf "'%s' and '%s' are the same file." fn_src fn_dst
| `UnhandledType(fn_src, _) ->
spf "Cannot handle the type of kind for file '%s'." fn_src
| `CannotCopyFilesToFile(_, fn_dst) ->
spf "Cannot copy a list of files to another file '%s'." fn_dst
| #exc -> "")
in
let handle_error e =
herror ~fatal:false e;
raise CpSkip
in
let handle_exception f a h =
try
f a
with e ->
herror ~fatal:false (h e);
raise CpSkip
in
let copy_time_props st_src fln_dst =
if preserve then begin
touch
~time:(Touch_timestamp st_src.modification_time)
~mtime:true
~create:false
fln_dst;
touch
~time:(Touch_timestamp st_src.access_time)
~atime:true
~create:false
fln_dst;
end
in
let buffer = Bytes.make 1024 ' ' in
let cp_file st_src dst_exists fn_src fn_dst =
let mode = int_of_permission st_src.permission in
let fd_dst =
if dst_exists && doit force fn_dst then begin
try
Unix.openfile fn_dst [Unix.O_WRONLY; Unix.O_TRUNC] mode
with _ ->
handle_exception
(fun lst -> rm lst) [fn_dst]
(fun e -> `CannotRemoveDstFile(fn_dst, e));
handle_exception
(Unix.openfile fn_dst [Unix.O_WRONLY; Unix.O_CREAT]) mode
(fun e -> `CannotOpenDstFile(fn_dst, e))
end else if not dst_exists then begin
handle_exception
(Unix.openfile fn_dst [Unix.O_WRONLY; Unix.O_CREAT]) mode
(fun e -> `CannotOpenDstFile(fn_dst, e))
end else begin
raise CpSkip
end
in
let read = ref 0 in
try
let fd_src =
handle_exception
(Unix.openfile fn_src [Unix.O_RDONLY]) 0o600
(fun e -> `CannotOpenSrcFile(fn_src, e))
in
try
while (read :=
handle_exception
(Unix.read fd_src buffer 0) (Bytes.length buffer)
(fun e -> `ErrorRead(fn_src, e));
!read <> 0) do
let written =
handle_exception
(Unix.write fd_dst buffer 0) !read
(fun e -> `ErrorWrite(fn_dst, e))
in
if written != !read then
handle_error (`PartialWrite(fn_src, !read, written))
done;
Unix.close fd_src;
Unix.close fd_dst;
copy_time_props st_src fn_dst
with e ->
Unix.close fd_src;
raise e
with e ->
Unix.close fd_dst;
raise e
in
let cp_symlink fn_src fn_dst =
Unix.symlink (Unix.readlink fn_src) fn_dst
in
let rec cp_dir st_src dst_exists fn_src fn_dst =
if not recurse then begin
handle_error (`CannotCopyDir fn_src)
end else if dst_exists && (stat fn_dst).kind <> Dir then begin
handle_error (`DstDirNotDir fn_dst)
end else begin
let dst_created =
if not dst_exists then begin
let mode =
let src_mode = int_of_permission st_src.permission in
let dst_mode =
if preserve then src_mode else umask_apply src_mode
in
`Octal (dst_mode lor 0o0700)
in
handle_exception
(fun fn -> mkdir ~mode fn) fn_dst
(fun e -> `CannotCreateDir(fn_dst, e));
true
end else begin
false
end
in
Array.iter
(fun bn ->
if not (is_current bn || is_parent bn) then
cp_one (concat fn_src bn) (concat fn_dst bn))
(handle_exception
Sys.readdir fn_src
(fun e -> `CannotListSrcDir(fn_src, e)));
if dst_created then begin
let mode =
let src_mode = int_of_permission st_src.permission in
`Octal (if preserve then src_mode else umask_apply src_mode)
in
handle_exception
(chmod mode) [fn_dst]
(fun e -> `CannotChmodDstDir(fn_dst, e));
copy_time_props st_src fn_dst
end
end
and cp_one fn_src fn_dst =
let st_src, st_src_deref =
if test_exists fn_src then begin
let st = stat fn_src in
if st.kind = Symlink && not recurse then begin
st, stat ~dereference:true fn_src
end else begin
st, st
end
end else begin
handle_error (`NoSourceFile fn_src)
end
in
let same_file, dst_exists =
try
same_file st_src (stat fn_dst), true
with FileDoesntExist _ ->
false, false
in
if same_file then begin
handle_error (`SameFile(fn_src, fn_dst))
end;
try
match st_src.kind with
| Dir -> cp_dir st_src dst_exists fn_src fn_dst
| File -> cp_file st_src dst_exists fn_src fn_dst
| Symlink ->
if st_src_deref.kind = Dir || recurse then
cp_symlink fn_src fn_dst
else
cp_file st_src_deref dst_exists fn_src fn_dst
| Fifo | Dev_char | Dev_block | Socket ->
handle_error (`UnhandledType(fn_src, st_src.kind))
with CpSkip ->
()
in
if test Is_dir fln_dst then
List.iter
(fun fn_src ->
cp_one fn_src (concat fln_dst (basename fn_src)))
fln_src_lst
else if List.length fln_src_lst <= 1 then
List.iter
(fun fn_src -> cp_one fn_src fln_dst)
fln_src_lst
else
handle_error (`CannotCopyFilesToFile(fln_src_lst, fln_dst))