3 external measurestr
: int -> string -> float = "ml_measure_string";;
11 type platform
= | Punknown
| Plinux
| Pmacos
| Pbsd
;;
13 let asciilower = let auld = Char.code 'A'
- Char.code '
a'
in
15 | ('A'
..'Z'
) as c
-> Char.code c
- auld |> Char.chr
19 let tempfailureretry f
a =
21 try f
a with Unix.Unix_error
(Unix.EINTR
, _
, _
) -> g ()
25 external cloexec
: Unix.file_descr
-> unit = "ml_cloexec";;
26 external hasdata
: Unix.file_descr
-> bool = "ml_hasdata";;
27 external toutf8
: int -> string = "ml_keysymtoutf8";;
28 external mbtoutf8
: string -> string = "ml_mbtoutf8";;
29 external spawn
: string -> (Unix.file_descr
* int) list
-> int = "ml_spawn";;
30 external platform
: unit -> (platform
* string array
) = "ml_platform";;
32 let now = Unix.gettimeofday
;;
33 let platform, uname
= platform ();;
34 let dolog fmt
= Format.ksprintf prerr_endline fmt
;;
37 | Unix.Unix_error
(e
, s, a) ->
38 Printf.sprintf
"%s(%s) : %s (%d)"
39 s a (Unix.error_message e
) (Obj.magic e
)
40 | exn
-> Printexc.to_string exn
43 let error fmt
= Printf.kprintf
(fun s -> failwith
s) fmt
;;
45 module IntSet
= Set.Make
(struct type t
= int let compare = (-) end);;
47 let emptystr s = String.length
s = 0;;
48 let nonemptystr s = String.length
s > 0;;
49 let bound v minv maxv
= max minv
(min maxv v
);;
52 type t
= private string
53 val of_string
: string -> t
54 val to_string
: t
-> string
62 let (~
<) = Opaque.of_string;;
63 let (~
>) = Opaque.to_string;;
65 let int_of_string_with_suffix s =
66 let l = String.length
s in
72 | 'k'
| 'K'
-> String.sub
s 0 p, 10
73 | 'm'
| 'M'
-> String.sub
s 0 p, 20
74 | '
g'
| 'G'
-> String.sub
s 0 p, 30
78 let n = int_of_string
s1 in
79 let m = n lsl shift
in
81 then error "value too large"
85 let string_with_suffix_of_int n =
89 let units = [(30, "G"); (20, "M"); (10, "K")] in
95 then string_of_int
h ^
s
97 let s = Printf.sprintf
"_%03d%s" h s in
103 let rec find = function
105 | (shift
, suffix
) :: rest
->
106 if (n land ((1 lsl shift
) - 1)) = 0
107 then prettyint (n lsr shift
) ^ suffix
113 let color_of_string s =
114 Scanf.sscanf
s "%d/%d/%d" (fun r
g b ->
115 (float r
/. 255.0, float g /. 255.0, float b /. 255.0)
119 let rgba_of_string s =
121 s "%d/%d/%d/%d" (fun r
g b a ->
122 (float r
/. 255.0, float g /. 255.0, float b /. 255.0, float a /. 255.0)
126 let color_to_string (r
, g, b) =
127 let r = truncate
(r *. 255.0)
128 and g = truncate
(g *. 255.0)
129 and b = truncate
(b *. 255.0) in
130 Printf.sprintf
"%d/%d/%d" r g b
133 let rgba_to_string (r, g, b, a) =
134 let r = truncate
(r *. 255.0)
135 and g = truncate
(g *. 255.0)
136 and b = truncate
(b *. 255.0)
137 and a = truncate
(a *. 255.0) in
138 Printf.sprintf
"%d/%d/%d/%d" r g b a
142 if Filename.is_relative path
144 let cwd = Sys.getcwd
() in
145 if Filename.is_implicit path
146 then Filename.concat
cwd path
147 else Filename.concat
cwd (Filename.basename path
)
153 let index s c
= try String.index s c
with Not_found
-> -1;;
155 try tempfailureretry Unix.close fd
156 with exn
-> f
@@ exntos exn
160 let getenvwithdef name def
=
161 match Sys.getenv name
with
163 | exception Not_found
-> def
167 let crlf = Str.regexp
"[\r\n]";;
168 let percent = Str.regexp
"%s";;
169 let whitespace = Str.regexp
"[ \t]";;
175 let b = Buffer.create
(String.length
s + 1) in
176 Buffer.add_string
b s;
181 let btod b = if b then 1 else 0;;
183 let splitatchar s c
= let open String
in
185 | pos
-> sub
s 0 pos
, sub
s (pos
+1) (length
s - pos
- 1)
186 | exception Not_found
-> s, E.s
189 let boundastep h step
=
191 then bound step ~
-h 0
195 let withoutlastutf8 s =
196 let len = String.length
s in
204 let b = Char.code
s.[pos
] in
205 if b land 0b11000000 = 0b11000000
210 if Char.code
s.[len-1] land 0x80 = 0
214 String.sub
s 0 first;
219 let b = Buffer.create
l in
220 let s = Bytes.create
l in
222 let n = tempfailureretry (Unix.read fd
s 0) l in
224 then Buffer.contents
b
226 Buffer.add_subbytes
b s 0 n;
233 let filecontents path
=
234 let fd = Unix.openfile path
[Unix.O_RDONLY
] 0o0
in
235 match fdcontents fd with
237 error "failed to read contents of %s: %s" path
@@ exntos exn
239 Ne.clo fd @@ error "failed to close descriptor for %s: %s" path
;
243 let getcmdoutput errfun cmd
=
244 let reperror fmt
= Printf.kprintf errfun fmt
in
245 let clofail s e
= error "failed to close %s: %s" s e
in
246 match Unix.pipe
() with
248 reperror "pipe failed: %s" @@ exntos exn
;
251 match spawn cmd
[r, -1; w
, 1] with
253 reperror "failed to execute %S: %s" cmd
@@ exntos exn
;
256 Ne.clo w
@@ clofail "write end of the pipe";
258 match Unix.waitpid
[] pid
with
260 reperror "waitpid on %S %d failed: %s" cmd pid
@@ exntos exn
;
262 | _pid
, Unix.WEXITED
0 ->
264 match fdcontents r with
266 reperror "failed to read output of %S: %s" cmd
@@ exntos exn
;
269 let l = String.length
s in
270 if l > 0 && s.[l-1] = '
\n'
271 then String.sub
s 0 (l-1)
274 | _pid
, Unix.WEXITED
n ->
275 reperror "%S exited with error code %d" cmd
n;
277 | _pid
, Unix.WSIGNALED
n ->
278 reperror "%S was killed with signal %d" cmd
n;
280 | _pid
, Unix.WSTOPPED
n ->
281 reperror "%S was stopped by signal %d" cmd
n;
284 Ne.clo r @@ clofail "read end of the pipe";
289 let re = Str.regexp
{|.*\
(\
(https?\
|ftp\
|mailto\
|file\
)://[^
]+\
).*|} in
290 fun s -> if Str.string_match
re s 0
291 then Str.matched_group
1 s
295 let substratis s pos subs
=
296 let subslen = String.length subs
in
297 if String.length
s - pos
>= subslen
299 let rec cmp i
= i
= subslen || (s.[pos
+i
] = subs
.[i
]) && cmp (i
+1)
304 let w8 s pos i
= Bytes.set
s pos
(Char.chr
(i
land 0xff));;
305 let r8 s pos
= Char.code
(Bytes.get
s pos
);;
309 w8 s (pos
+1) (i
lsr 8)
314 w16 s (pos
+2) (i
lsr 16)
318 let rb pos1
= Char.code
(Bytes.get
s (pos
+ pos1
)) in
319 (rb 0) lor ((rb 1) lsl 8)
324 i - ((i land 0x8000) lsl 1)
328 let rb pos1
= Char.code
(Bytes.get
s (pos
+ pos1
)) in
329 let l = (rb 0) lor ((rb 1) lsl 8)
330 and u
= (rb 2) lor ((rb 3) lsl 8) in
335 if Sys.word_size
> 32
337 let rb pos1
= Char.code
(Bytes.get
s (pos
+ pos1
)) in
338 let v0 = rb 0 and v1
= rb 1 and v2
= rb 2 and v3
= rb 3 in
339 let v = v0 lor (v1
lsl 8) lor (v2
lsl 16) lor (v3
lsl 24) in
342 else (v - (1 lsl 32))
343 else failwith
"r32s: not implemented for word_size <= 32"
346 let vlog fmt
= Format.ksprintf ignore fmt
;;
348 let pipef ?
(closew
=true) cap f cmd
=
349 match Unix.pipe
() with
350 | exception exn
-> dolog "%s cannot create pipe: %S" cap
@@ exntos exn
352 begin match spawn cmd
[r, 0; w
, -1] with
353 | exception exn
-> dolog "%s: cannot execute %S: %s" cap cmd
@@ exntos exn
356 Ne.clo r (dolog "%s failed to close r: %s" cap
);
357 if closew
then Ne.clo w
(dolog "%s failed to close w: %s" cap
);
360 let selstring selcmd
s =
361 pipef "selstring" (fun w
->
363 let l = String.length
s in
364 let bytes = Bytes.unsafe_of_string
s in
365 let n = tempfailureretry (Unix.write w
bytes 0) l in
367 then dolog "failed to write %d characters to sel pipe, wrote %d" l n;
368 with exn
-> dolog "failed to write to sel pipe: %s" @@ exntos exn