Do not lose original error cause
[llpp.git] / utils.ml
blob668e936eff1c65f5e30b20f8d9e316c4da4c211b
1 module E = struct
2 let s = "";;
3 let b = Bytes.of_string s;;
4 let a = [||];;
5 end;;
7 type platform = | Punknown | Plinux | Posx | Psun | Pbsd | Pcygwin;;
9 let tempfailureretry f a =
10 let rec g () =
11 try f a with Unix.Unix_error (Unix.EINTR, _, _) -> g ()
12 in g ()
15 external cloexec : Unix.file_descr -> unit = "ml_cloexec";;
16 external hasdata : Unix.file_descr -> bool = "ml_hasdata";;
17 external toutf8 : int -> string = "ml_keysymtoutf8";;
18 external mbtoutf8 : string -> string = "ml_mbtoutf8";;
19 external popen : string -> (Unix.file_descr * int) list -> int = "ml_popen";;
20 external platform : unit -> (platform * string array) = "ml_platform";;
22 let now = Unix.gettimeofday;;
23 let platform, uname = platform ();;
24 let dolog fmt = Format.ksprintf prerr_endline fmt;;
26 let exntos = function
27 | Unix.Unix_error (e, s, a) -> Printf.sprintf "%s(%s) : %s (%d)"
28 s a (Unix.error_message e) (Obj.magic e)
29 | exn -> Printexc.to_string exn;
32 let error fmt = Printf.kprintf failwith fmt;;
34 module IntSet = Set.Make (struct type t = int let compare = (-) end);;
36 let emptystr s = String.length s = 0;;
37 let nonemptystr s = String.length s > 0;;
38 let bound v minv maxv = max minv (min maxv v);;
40 let popen cmd fda =
41 if platform = Pcygwin
42 then failwith "popen not implemented under cygwin yet"
43 else popen cmd fda;
46 module Opaque :
47 sig
48 type t = private string
49 val of_string : string -> t
50 val to_string : t -> string
51 end
53 struct
54 type t = string
55 let of_string s = s
56 let to_string t = t
57 end
60 let (~<) = Opaque.of_string;;
61 let (~>) = Opaque.to_string;;
63 let int_of_string_with_suffix s =
64 let l = String.length s in
65 let s1, shift =
66 if l > 1
67 then
68 let suffix = Char.lowercase s.[l-1] in
69 match suffix with
70 | 'k' -> String.sub s 0 (l-1), 10
71 | 'm' -> String.sub s 0 (l-1), 20
72 | 'g' -> String.sub s 0 (l-1), 30
73 | _ -> s, 0
74 else s, 0
76 let n = int_of_string s1 in
77 let m = n lsl shift in
78 if m < 0 || m < n
79 then error "value too large"
80 else m
83 let string_with_suffix_of_int n =
84 if n = 0
85 then "0"
86 else
87 let units = [(30, "G"); (20, "M"); (10, "K")] in
88 let prettyint n =
89 let rec loop s n =
90 let h = n mod 1000 in
91 let n = n / 1000 in
92 if n = 0
93 then string_of_int h ^ s
94 else (
95 let s = Printf.sprintf "_%03d%s" h s in
96 loop s n
99 loop E.s n
101 let rec find = function
102 | [] -> prettyint n
103 | (shift, suffix) :: rest ->
104 if (n land ((1 lsl shift) - 1)) = 0
105 then prettyint (n lsr shift) ^ suffix
106 else find rest
108 find units
111 let color_of_string s =
112 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
113 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
117 let color_to_string (r, g, b) =
118 let r = truncate (r *. 256.0)
119 and g = truncate (g *. 256.0)
120 and b = truncate (b *. 256.0) in
121 Printf.sprintf "%d/%d/%d" r g b
124 let abspath path =
125 if Filename.is_relative path
126 then
127 let cwd = Sys.getcwd () in
128 if Filename.is_implicit path
129 then Filename.concat cwd path
130 else Filename.concat cwd (Filename.basename path)
131 else
132 path
135 let nindex s c =
136 try String.index s c
137 with Not_found -> -1
140 module Ne = struct
141 let clo fd f =
142 try tempfailureretry Unix.close fd
143 with exn -> f (exntos exn)
145 end;;
147 let getenvwithdef name def =
148 match Sys.getenv name with
149 | env -> env
150 | exception Not_found -> def
153 let newlinere = Str.regexp "[\r\n]";;
154 let percentsre = Str.regexp "%s";;
155 let whitere = Str.regexp "[ \t]";;
157 let unit () = ();;
159 let addchar s c =
160 let b = Buffer.create (String.length s + 1) in
161 Buffer.add_string b s;
162 Buffer.add_char b c;
163 Buffer.contents b;
166 let btod b = if b then 1 else 0;;
168 let splitatspace =
169 let r = Str.regexp " " in
170 fun s -> Str.bounded_split r s 2;
173 let boundastep h step =
174 if step < 0
175 then bound step ~-h 0
176 else bound step 0 h
179 let withoutlastutf8 s =
180 let len = String.length s in
181 if len = 0
182 then s
183 else
184 let rec find pos =
185 if pos = 0
186 then pos
187 else
188 let b = Char.code s.[pos] in
189 if b land 0b11000000 = 0b11000000
190 then pos
191 else find (pos-1)
193 let first =
194 if Char.code s.[len-1] land 0x80 = 0
195 then len-1
196 else find (len-1)
198 String.sub s 0 first;
201 let fdcontents fd =
202 let l = 4096 in
203 let b = Buffer.create l in
204 let s = Bytes.create l in
205 let rec loop () =
206 let n = tempfailureretry (Unix.read fd s 0) l in
207 if n = 0
208 then Buffer.contents b
209 else (
210 Buffer.add_subbytes b s 0 n;
211 loop ()
214 loop ()
217 let filecontents path =
218 let fd = Unix.openfile path [Unix.O_RDONLY] 0o0 in
219 match fdcontents fd with
220 | (exception exn) ->
221 error "failed to read contents of %s: %s" path @@ exntos exn
222 | s ->
223 Ne.clo fd @@ error "failed to close descriptor for %s: %s" path;
227 let getcmdoutput errfun cmd =
228 let reperror fmt = Printf.kprintf errfun fmt in
229 let clofail s e = error "failed to close %s: %s" s e in
230 match Unix.pipe () with
231 | (exception exn) ->
232 reperror "pipe failed: %s" (exntos exn);
234 | (r, w) ->
235 match popen cmd [r, -1; w, 1] with
236 | (exception exn) ->
237 reperror "failed to execute %S: %s" cmd (exntos exn);
239 | pid ->
240 Ne.clo w @@ clofail "write end of the pipe";
241 let s =
242 match Unix.waitpid [] pid with
243 | (exception exn) ->
244 reperror "waitpid on %S %d failed: %s" cmd pid (exntos exn);
246 | _pid, Unix.WEXITED 0 ->
247 begin
248 match fdcontents r with
249 | (exception exn) ->
250 reperror "failed to read output of %S: %s" cmd (exntos exn);
252 | s ->
253 let l = String.length s in
254 if l > 0 && s.[l-1] = '\n'
255 then String.sub s 0 (l-1)
256 else s
257 end;
258 | _pid, Unix.WEXITED n ->
259 reperror "%S exited with error code %d" cmd n;
261 | _pid, Unix.WSIGNALED n ->
262 reperror "%S was killed with signal %d" cmd n;
264 | _pid, Unix.WSTOPPED n ->
265 reperror "%S was stopped by signal %d" cmd n;
268 Ne.clo r @@ clofail "read end of the pipe";
272 let geturl =
273 let re = Str.regexp {|.*\(\(https?\|ftp\|mailto\|file\)://[^ ]+\).*|} in
274 fun s ->
275 if Str.string_match re s 0
276 then Str.matched_group 1 s
277 else E.s