Merge branch 'c-cube:master' into master

This commit is contained in:
Christophe Raffalli 2023-01-14 17:28:58 -10:00 committed by GitHub
commit dc7fb3b87f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 8 deletions

View file

@ -82,8 +82,8 @@ let vfs_of_dir (top:string) : vfs =
let contains f = Sys.file_exists (top // f)
let list_dir f = Sys.readdir (top // f)
let read_file_content f =
let ic = open_in_bin (top // f) in
Tiny_httpd_stream.of_chan ic
let ic = Unix.(openfile (top // f) [O_RDONLY] 0) in
Tiny_httpd_stream.of_fd ic
let create f =
let oc = open_out_bin (top // f) in
let write = output oc in
@ -398,4 +398,3 @@ module Embedded_fs = struct
end in (module M)
end

View file

@ -258,7 +258,7 @@ module Request = struct
} in
Ok (Some req)
with
| End_of_file | Sys_error _ -> Ok None
| End_of_file | Sys_error _ | Unix.Unix_error _ -> Ok None
| Bad_req (c,s) -> Error (c,s)
| e ->
Error (400, Printexc.to_string e)

View file

@ -120,13 +120,13 @@ let of_string s : t =
of_bytes (Bytes.unsafe_of_string s)
let with_file ?buf_size file f =
let ic = open_in file in
let ic = Unix.(openfile file [O_RDONLY] 0) in
try
let x = f (of_chan ?buf_size ic) in
close_in ic;
let x = f (of_fd ?buf_size ic) in
Unix.close ic;
x
with e ->
close_in_noerr ic;
Unix.close ic;
raise e
let read_all ?(buf=Buf.create()) (self:t) : string =