package eio
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Effect-based direct-style IO API for OCaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
eio-1.5.tbz
sha256=7d70d1f5fb2b7190bf1ab28fffeb272da51ffe6d6c9c7c94e0485fabdf3b3fda
sha512=4582ac2fb2f8616b3d8ae9670eb7913a78085899b14044408801b30a34fed6c4d32971ba72eedb0cbc3d82c057610cf81c482090e75e2985330fcde96478ac5e
doc/src/eio/path.ml.html
Source file path.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 236type -'a t = 'a Fs.dir * Fs.path let of_dir d = (d, "") let ( / ) (d, p1) p2 = let (Resource.T (_, ops)) = d in let module X = (val (Resource.get ops Fs.Pi.Dir)) in (d, X.join p1 p2) let pp f (Resource.T (t, ops), p) = let module X = (val (Resource.get ops Fs.Pi.Dir)) in if p = "" then Fmt.pf f "<%a>" X.pp t else Fmt.pf f "<%a:%s>" X.pp t (String.escaped p) let native (Resource.T (t, ops), p) = let module X = (val (Resource.get ops Fs.Pi.Dir)) in X.native t p let native_exn t = match native t with | Some p -> p | None -> raise (Fs.err (Not_native (Fmt.str "%a" pp t))) let split (d, p) = let (Resource.T (_, ops)) = d in let module X = (val (Resource.get ops Fs.Pi.Dir)) in X.split p |> Option.map (fun (dirname, basename) -> ((d, dirname), basename)) let open_in ~sw t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.open_in dir ~sw path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "opening %a" pp t let open_out ~sw ?(append=false) ~create t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.open_out dir ~sw ~append ~create path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "opening %a" pp t let open_subtree ~sw t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try let sub = X.open_subtree dir ~sw path, "" in (sub : [`Close | `Dir] t :> [< `Close | `Dir] t) with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "opening directory %a" pp t let open_dir = open_subtree let mkdir ~perm t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.mkdir dir ~perm path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "creating directory %a" pp t let read_dir t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try List.sort String.compare (X.read_dir dir path) with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "reading directory %a" pp t let with_dir_entries t fn = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in (* Note: we don't handle exceptions here as that would include the user's [fn] (and this is likely to be called recursively). *) X.with_dir_entries dir path fn let read_dir_entries t = try with_dir_entries t List.of_seq |> List.sort (fun (_, a) (_, b) -> String.compare a b) with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "reading directory %a" pp t let stat ~follow t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.stat ~follow dir path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "examining %a" pp t let kind ~follow t = try ((stat ~follow t).kind :> [File.Stat.kind | `Not_found]) with Exn.Io (Fs.E Not_found _, _) -> `Not_found let is_file t = kind ~follow:true t = `Regular_file let is_directory t = kind ~follow:true t = `Directory let with_open_in path fn = Switch.run ~name:"with_open_in" @@ fun sw -> fn (open_in ~sw path) let with_open_out ?append ~create path fn = Switch.run ~name:"with_open_out" @@ fun sw -> fn (open_out ~sw ?append ~create path) let with_subtree path fn = Switch.run ~name:"with_subtree" @@ fun sw -> fn (open_subtree ~sw path) let with_open_dir = with_subtree let with_lines path fn = with_open_in path @@ fun flow -> let buf = Buf_read.of_flow flow ~max_size:max_int in fn (Buf_read.lines buf) let load t = with_open_in t @@ fun flow -> try let size = File.size flow in if Optint.Int63.(compare size (of_int Sys.max_string_length)) = 1 then raise @@ Fs.err File_too_large; let buf = Buf_read.of_flow flow ~initial_size:(max 4096 (Optint.Int63.to_int size + 1)) ~max_size:(Sys.max_string_length + 1) in Buf_read.take_all buf with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "loading %a" pp t let save ?append ~create path data = with_open_out ?append ~create path @@ fun flow -> Flow.copy_string data flow let unlink ?(missing_ok=false) t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.unlink dir path with | Exn.Io (Fs.(E (Not_found _)), _) when missing_ok -> () | Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "removing file %a" pp t let rmdir t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.rmdir dir path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "removing directory %a" pp t let catch_missing ~missing_ok fn x = if missing_ok then try fn x with Exn.Io (Fs.E Not_found _, _) -> () else fn x let rec rmtree ~missing_ok t = match kind ~follow:false t with | `Directory -> Switch.run ~name:"rmtree" (fun sw -> match let t = open_subtree ~sw t in t, read_dir t with | t, items -> List.iter (fun x -> rmtree ~missing_ok (t / x)) items | exception Exn.Io (Fs.E Not_found _, _) when missing_ok -> () ); catch_missing ~missing_ok rmdir t | `Not_found when missing_ok -> () | _ -> catch_missing ~missing_ok unlink t let rmtree ?(missing_ok=false) t = rmtree ~missing_ok (t :> Fs.dir_ty t) let rename t1 t2 = let (dir2, new_path) = t2 in let (Resource.T (dir, ops), old_path) = t1 in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.rename dir old_path (dir2 :> _ Fs.dir) new_path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "renaming %a to %a" pp t1 pp t2 let symlink ~link_to source = let (Resource.T (dir, ops), path) = source in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.symlink dir path ~link_to with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "creating symlink %a -> %s" pp source link_to let chmod ~follow ~perm t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.chmod dir ~follow ~perm path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "chmoding file %a" pp t let rec mkdirs ?(exists_ok=false) ~perm t = (* Check parent exists first. *) split t |> Option.iter (fun (parent, _) -> match is_directory parent with | true -> () | false -> mkdirs ~perm ~exists_ok:true parent | exception (Exn.Io _ as ex) -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "creating directory %a" pp t ); try mkdir ~perm t with Exn.Io (Fs.E Already_exists _, _) when exists_ok && is_directory t -> () let read_link t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.read_link dir path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "reading target of symlink %a" pp t let chown ~follow ?uid ?gid t = let (Resource.T (dir, ops), path) = t in let module X = (val (Resource.get ops Fs.Pi.Dir)) in try X.chown ~follow ?uid ?gid dir path with Exn.Io _ as ex -> let bt = Printexc.get_raw_backtrace () in Exn.reraise_with_context ex bt "changing ownership of %a" pp t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>